速報APP / 工具 / ARMAssem for Mobile App Development

ARMAssem for Mobile App Development

價格:免費

更新日期:2019-07-31

檔案大小:110k

目前版本:1.0

版本需求:Android 4.0 以上版本

官方網站:mailto:mardrew.barnes@gmail.com

Email:https://github.com/mardrewbarnes/mardrewbarnes.github.io/wiki/ARMAssem-Privacy-Policy

聯絡地址:8/15 Good St Westmead NSW 2145 AUSTRALIA

ARMAssem for Mobile App Development(圖1)-速報App

ARMAssem is a Christian outreach app. It aims to spread the good news message of Jesus Christ while providing an application that may find useful or educational.

Most mobile devices run on some kind of ARM processor. As the ARM processors use RISC (reduced instruction set) architecture, they are relatively easy to learn. This app allows you to write ARM-like assembly language to create a basic app or game. There is no need to understand anything about the hardware of the device, as an API is provided to set the colour, draw lines, rectangles, text and handle taps and swipes.

As the translation from the assembly language is a relatively simple process, the assembler runs very fast. For simple apps, expect less than one second between making a change and seeing the result on the screen.

ARMAssem comes preloaded with a sample assembly language program. The sample shows how you can make a palette editor using the Android API. The idea is that you can edit the sample program, see the results of your changes and get started learning assembly very quickly.

Supported Instructions:

MOV,CMP,B,BEQ,BNE,BGT,BLT,BGE,BLE

MOVEQ,MOVNE,MOVGT,MOVLE

LDR - preindexed, postindexed, offset

STR - preindexed, postindexed, offset

ADD

SUB

Note all instructions currently only work on 32-bit numbers,

there are no byte level or half-word level operations.

ARMAssem for Mobile App Development(圖2)-速報App

Strings are encoded as sequences of 32-bit numbers.

Currently Supported:

32-bit registers and memory locations

Define separate data and code sections

Define integer or string variables

Define labels for variables and branch locations

Debugger:

Allows you to run step by step, seeing registers and memory change

Shows current registers R0-R7

Shows current memory locations M0-M7

Ability to see app running on the same screen as the debugger, this makes it easy to learn assembly language

Compatibility:

Up to 720x1280 resolution available

ARMAssem for Mobile App Development(圖3)-速報App

Older and newer devices are supported

Resize option available to fit any size screen (with loss of resolution for smaller screens)

ARMAssem for Mobile App Development(圖4)-速報App